home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 April: Mac OS SDK / Dev.CD Apr 00 SDK1.toast / Development Kits / Hardware / Mac OS USB DDK 1.4.1f4 / USB Software Locator Kit / SampleDriverInstallerExample / hex2c.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-14  |  260 b   |  11 lines  |  [TEXT/MPS ]

  1. #ifndef __HEX2C__
  2. #define __HEX2C__
  3. #define MAX_INTEL_HEX_RECORD_LENGTH 16
  4. typedef struct _INTEL_HEX_RECORD
  5. {
  6.    UInt32      Length;
  7.    UInt32     Address;
  8.    UInt32      Type;
  9.    UInt8      Data[MAX_INTEL_HEX_RECORD_LENGTH];
  10. } INTEL_HEX_RECORD, *PINTEL_HEX_RECORD;
  11. #endif